home *** CD-ROM | disk | FTP | other *** search
/ Turnbull China Bikeride / Turnbull China Bikeride - Disc 1.iso / ARGONET / PD / PROGRAMMING / DESKLIBC / SOURCES.ZIP / DeskLib / !DLSources / Libraries / Clear / c / Init < prev    next >
Text File  |  1995-07-09  |  954b  |  32 lines

  1. /*
  2.     ####             #    #     # #
  3.     #   #            #    #       #          The FreeWare C library for 
  4.     #   #  ##   ###  #  # #     # ###             RISC OS machines
  5.     #   # #  # #     # #  #     # #  #   ___________________________________
  6.     #   # ####  ###  ##   #     # #  #                                      
  7.     #   # #        # # #  #     # #  #    Please refer to the accompanying
  8.     ####   ### ####  #  # ##### # ###    documentation for conditions of use
  9.     ________________________________________________________________________
  10.  
  11.     File:    Clear.c.Init
  12.     Author:  Copyright © 1993 Jason Howat
  13.     Version: 1.00 (16 Dec 1993)
  14.     Purpose: Initialise the Clear library.
  15. */
  16.  
  17.  
  18. #include "DeskLib:Clear.h"
  19.  
  20. #include "ClearDefs.h"
  21.  
  22.  
  23. char            *clear__creator;
  24. unsigned        clear__creatorversion;
  25.  
  26.  
  27. void Clear_Init(char *creator, unsigned version)
  28. {
  29.   clear__creator = creator;
  30.   clear__creatorversion = version;
  31. }
  32.